home *** CD-ROM | disk | FTP | other *** search
/ Australian Personal Computer 2004 July / APC0407D2.iso / workshop / onlineco / files / ImageMagick-6.0.1-Q16-windows-dll.exe / {app} / include / magick / configure.h < prev    next >
Encoding:
C/C++ Source or Header  |  2004-04-13  |  1.3 KB  |  57 lines

  1. /*
  2.   Configure methods.
  3. */
  4. #ifndef _MAGICK_CONFIGURE_H
  5. #define _MAGICK_CONFIGURE_H
  6.  
  7. #if defined(__cplusplus) || defined(c_plusplus)
  8. extern "C" {
  9. #endif
  10.  
  11. #include "magick/hashmap.h"
  12.  
  13. typedef struct _ConfigureInfo
  14. {
  15.   char
  16.     *path,
  17.     *name,
  18.     *value;
  19.                                                                                 
  20.   unsigned int
  21.     stealth;
  22.                                                                                 
  23.   struct _ConfigureInfo
  24.     *previous,
  25.     *next;  /* deprecated, use GetConfigureInfoList() */
  26.  
  27.   unsigned long
  28.     signature;
  29. } ConfigureInfo;
  30.  
  31. extern MagickExport char
  32.   **GetConfigureList(const char *,unsigned long *);
  33.  
  34. extern MagickExport const char
  35.   *GetConfigureValue(const ConfigureInfo *);
  36.  
  37. extern MagickExport const ConfigureInfo
  38.   *GetConfigureInfo(const char *,ExceptionInfo *),
  39.   **GetConfigureInfoList(const char *,unsigned long *);
  40.  
  41. extern MagickExport LinkedListInfo
  42.   *GetConfigurePaths(const char *,ExceptionInfo *),
  43.   *GetConfigureOptions(const char *,ExceptionInfo *);
  44.  
  45. extern MagickExport unsigned int
  46.   ListConfigureInfo(FILE *,ExceptionInfo *);
  47.  
  48. extern MagickExport void
  49.   DestroyConfigureList(void),
  50.   DestroyConfigureOptions(LinkedListInfo *);
  51.  
  52. #if defined(__cplusplus) || defined(c_plusplus)
  53. }
  54. #endif
  55.  
  56. #endif
  57.